home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HAM Radio 1997
/
HAM Radio 1997.iso
/
vcls
/
reswtch2
/
rwatch.dpr
< prev
next >
Wrap
Text File
|
1996-04-08
|
306b
|
16 lines
program Rwatch;
uses
Forms,
Reswatch in 'RESWATCH.PAS' {RWMain},
Rwabout in 'RWABOUT.PAS' {RWAboutBox};
{$R *.RES}
begin
Application.Title := 'Resource Watcher';
Application.CreateForm(TRWMain, RWMain);
Application.CreateForm(TRWAboutBox, RWAboutBox);
Application.Run;
end.